projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64c8498
)
(blink-matching-open): Treat / syntax like \ syntax.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 21 Oct 1993 21:25:05 +0000
(21:25 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 21 Oct 1993 21:25:05 +0000
(21:25 +0000)
lisp/simple.el
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index 9139298a398c55a475cc4c463cdab8421d74e4f4..a9a262cee16afecee02afa613757adbb4ffa1ca1 100644
(file)
--- a/
lisp/simple.el
+++ b/
lisp/simple.el
@@
-2115,7
+2115,7
@@
in the mode line."
"Move cursor momentarily to the beginning of the sexp before point."
(interactive)
(and (> (point) (1+ (point-min)))
- (
/= (char-syntax (char-after (- (point) 2))) ?\\
)
+ (
not (memq (char-syntax (char-after (- (point) 2))) '(?/ ?\\ ))
)
blink-matching-paren
(let* ((oldpos (point))
(blinkpos)